home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK1.toast / Development Kits (Disc 1) / Open Transport / Sample Code / DLPI / ATM PCI DLPI / MPW Build / Build Directions
Encoding:
Text File  |  1995-08-03  |  1.5 KB  |  54 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        Build Setup
  3. #
  4. #    Contains:    Information on how to setup the build process for the DLPI
  5. #
  6. #    Written by:    
  7. #
  8. #    Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    Change History (most recent first):
  11. #
  12. #
  13.  
  14. #
  15. # In order to build the sample ATM PCI DLPI, a few things need 
  16. # to be setup.  You will need the Open Transport developer disk.
  17. # Once the OT Developer Files Folder is copied to your local hard
  18. # set the path as shown below:
  19. #
  20.  
  21. Set OTDevTools 'Your Hard Disk:Open Transport SDK:'
  22. export    OTDevTools
  23.  
  24.  
  25. # The next MPW variable must point to the Universal headers.  This is a 
  26. # special version of the headers that accompanied this dlpi sample code.
  27.  
  28. set DriverHeaders    "Your Hard Disk:Headers:"
  29. export DriverHeaders
  30.  
  31.  
  32. # The next MPW variable that must be setup is a path to the Driver Libraries.
  33. # This folder contains PCILib, NameRegistryLib, and DriverServicesLib
  34.  
  35. set DriverLibraries    "Your Hard Disk:TheLibraries:"
  36. export DriverLibraries
  37.  
  38. # The last MPW variable that must be setup is a path to the ATM headers.
  39.  
  40. set ATMHeaders    "Your Hard Disk:TheLibraries:"
  41. export ATMHeaders
  42.  
  43. # After everything is setup then set the directory to the MakeFiles directory 
  44. # and just select and execute:
  45. #
  46.         directory "Your Hard Disk:DLPI Folder Location:MPW Build:MakeFiles:"
  47.  
  48.         buildprogram -e atmdlpiCFM        # for PowerPC version, CFM stands for 
  49.                                         #  Code Fragment Manager
  50.  
  51. #
  52. # The sample dlpi will be in the Built folder, the symbol file can be found in the
  53. # Objects folder.
  54. #